home *** CD-ROM | disk | FTP | other *** search
/ PC PLAY 8 (Swedish) / PC PLAY 8.iso / play / intro.dxr / 00001_StartMovie.ls next >
Encoding:
Text File  |  1997-10-22  |  261 b   |  19 lines

  1. on startMovie
  2.   preLoad(2, 31)
  3. end
  4.  
  5. on mouseDown
  6.   global gMovieList
  7.   if objectp(gMovieList) then
  8.     GoForward(gMovieList)
  9.   end if
  10. end
  11.  
  12. on keyDown
  13.   if the key = RETURN then
  14.     if objectp(gMovieList) then
  15.       GoForward(gMovieList)
  16.     end if
  17.   end if
  18. end
  19.